home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 February / Macworld (1999-02).dmg / Games World / SharewareGames / Xconq 7.2.2 / lib / mormon.g < prev    next >
Text File  |  1998-05-22  |  7KB  |  329 lines

  1. (game-module "mormon"
  2.   (title "Mormon")
  3.   (blurb "The heroic age of the heroic Mormon pioneers")
  4.   (variants (world-seen true) (see-all))
  5.   )
  6.  
  7. (unit-type mormon (image-name "man")
  8.   (possible-sides "mormon")
  9.   (help "prolific settlers"))
  10. (unit-type avenging-angel (name "avenging angel") (image-name "trooper") (char "A")
  11.   (possible-sides "mormon")
  12.   (help "Mormon police/army/vigilantes"))
  13. (unit-type prophet (image-name "man") (char "P")
  14.   (possible-sides "mormon")
  15.   (help "prolific leader"))
  16. (unit-type army (image-name "cavalry")
  17.   (possible-sides "us")
  18.   (help "ordered to keep Mormons under control"))
  19. (unit-type indian (name "Indian") (image-name "archer") (char "u")
  20.   (possible-sides "indian")
  21.   (help "want to get rid of Mormons and cavalry"))
  22. (unit-type fort (image-name "walltown") (char "/")
  23.   (help "where the army hangs out"))
  24. (unit-type settlement (image-name "walltown") (char "*")
  25.   (help "where Mormons live"))
  26. (unit-type temple (image-name "city18") (char "@")
  27.   (help "where all good Mormons aspire to live"))
  28.  
  29. (material-type water (help "very scarce in Utah"))
  30.  
  31. (terrain-type lake (image-name "sky-blue") (char "."))
  32. (terrain-type river (image-name "cyan") (char ","))
  33. (terrain-type valley (image-name "plains") (char "+"))
  34. (terrain-type forest (char "%"))
  35. (terrain-type desert (char "~"))
  36. (terrain-type mountains (char "^"))
  37. (terrain-type salt-flat (image-name "white") (char "_"))
  38. (terrain-type not-Utah (image-name "black") (char ":"))
  39.  
  40. (define places (fort settlement temple))
  41.  
  42. (add (lake river) liquid true)
  43.  
  44. ;;; Static relationships.
  45.  
  46. (table vanishes-on
  47.   (u* (lake not-Utah) true)
  48.   )
  49.  
  50. (add (settlement temple) capacity 8)
  51.  
  52. (table unit-size-as-occupant
  53.   (u* u* 100) ; disables occupancy usually
  54.   ((mormon avenging-angel prophet) (fort settlement temple) 1)
  55.   )
  56.  
  57. (table unit-capacity-x
  58.   (fort army 6)
  59.   ((settlement temple) army 1)
  60.   )
  61.  
  62. ;;; Unit-terrain capacity.
  63.  
  64. (add t* capacity 4)
  65.  
  66. (table unit-size-in-terrain
  67.   (u* t* 1)
  68.   ((settlement temple) t* 4)
  69.   )
  70.  
  71. ;;; Unit-material capacities.
  72.  
  73. (table unit-storage-x
  74.   (u* water 2)
  75.   (army water 4)
  76.   (places water 100)
  77.   )
  78.  
  79. ;;; Actions.
  80.  
  81. ;;;; scale should be 15 km?
  82.  
  83. (add (mormon avenging-angel army indian prophet) acp-per-turn (2 4 4 4 6))
  84.  
  85. (add places acp-per-turn 1)
  86.  
  87. ;;; Movement.
  88.  
  89. (add places speed 0)
  90.  
  91. (table mp-to-enter-terrain
  92.   ;; Nobody will go into deadly terrain by accident.
  93.   (u* (lake not-Utah) 99)
  94.   )
  95.  
  96. ;;; Construction.
  97.  
  98. (add (army indian) cp 4)
  99.  
  100. (add places cp (5 10 20))
  101.  
  102. (table acp-to-create
  103.   (prophet mormon 6)
  104.   (prophet temple 6)
  105.   (mormon mormon 2)
  106.   (mormon settlement 2)
  107.   (army fort 4)
  108.   (fort army 1)
  109.   (indian indian 4)
  110.   (settlement mormon 1)
  111.   (temple avenging-angel 1)
  112.   )
  113.  
  114. (table acp-to-build
  115.   (mormon settlement 2)
  116.   (prophet temple 6)
  117.   (army fort 4)
  118.   (indian indian 4)
  119.   (fort army 1)
  120.   )
  121.  
  122. (table supply-on-creation
  123.   ;; Minimal water supply is free.
  124.   (u* water 1)
  125.   )
  126.  
  127. ;;; Production (water).
  128.  
  129. (table base-production
  130.   (u* water 1)
  131.   (places water 3)
  132.   )
  133.  
  134. (table productivity
  135.   (u* t* 0)
  136.   (u* (valley river) 100)  ; note that the lake is salt, so useless
  137.   (u* forest 200)
  138.   (army mountains 50)
  139.   ;; Indians can get water anywhere but in salt flats.
  140.   (indian t* 100)
  141.   (indian salt-flat 0)
  142.   (u* valley 100)
  143.   )
  144.  
  145. (table base-consumption
  146.   (u* water 1)
  147.   )
  148.  
  149. (table hp-per-starve
  150.   ;; Might be able to do without water, but not for long.
  151.   (u* water 0.50)
  152.   )
  153.  
  154. ;;; Combat.
  155.  
  156. (add u* hp-max (4 4 2 4 2 16 16 16))
  157.  
  158. (table hit-chance
  159.   (u* u* 50)
  160.   (mormon army 5)
  161.   ;; armies and indians are deadly.
  162.   ((army indian) mormon 95)
  163.   ;; Prophet is wily.
  164.   ((army indian) prophet 50)
  165.   (army avenging-angel 30)
  166.   ;; avenging angels are best way to hit back.
  167.   (avenging-angel army 50)
  168.   )
  169.  
  170. (table damage
  171.   (u* u* 1)
  172.   (army u* 1d2+1)
  173.   ;; indians can be very destructive sometimes.
  174.   (indian u* 1d4+1)
  175.   )
  176.  
  177. (table withdraw-chance-per-attack
  178.   ;; OK, so they weren't that heroic...
  179.   (u* u* 10)
  180.   )
  181.  
  182. (table hp-min
  183.   ;; Temple is made of stone, can only be destroyed by the army or indians
  184.   (u* temple 4)
  185.   ((army indian) temple 0)
  186.   )
  187.  
  188. (table capture-chance
  189.   (army places (10 10 5))
  190.   (avenging-angel places 5)
  191.   ;; Give the civilians a small chance of success.
  192.   (mormon places 1)
  193.   )
  194.  
  195. (add u* hp-recovery 1.00)
  196. (add army hp-recovery 0.50)
  197.  
  198. ;;; Initial setup.
  199.  
  200. (add u* initial-seen-radius 4)
  201.  
  202. (table unit-initial-supply
  203.   (u* water 9999)
  204.   )
  205.  
  206. ;;; Scoring.
  207.  
  208. (scorekeeper (do last-side-wins))
  209.  
  210. ;;; Text.
  211.  
  212. (set event-notices '(
  213.   ((unit-starved (mormon avenging-angel a)) (0 "dies of thirst"))
  214.   ))
  215.  
  216. (set event-narratives '(
  217.   ((unit-starved (mormon avenging-angel a)) (0 "died of thirst"))
  218.   ))
  219.  
  220. (world 50)  ; hexagon would be better
  221.  
  222. (area 50 42)
  223.  
  224. (area (terrain
  225.   "50h"
  226.   "6ecfcfc2af33h3e"
  227.   "2f5ecfcf2a2f32h2ef"
  228.   "8ecfcfafd33h2e"
  229.   "4e2a3ecfc2fdf32hef"
  230.   "e2g2e2a2ecf2c2fd33he"
  231.   "fe2ge3aeacf2cfdf32he"
  232.   "2e3ge4aecf2cfd33h"
  233.   "fe4ge3aecf3cdf32h"
  234.   "he3gfge3aecf4c10dc3e18h"
  235.   "he3gfge2ae2acf3c2d7f2dc2e18h"
  236.   "2he5g2e3aecf2cd10fce2b17h"
  237.   "2h2e4g3ea2ecf3c3d6fc2ebe17h"
  238.   "3he3g3ef2efcf2cf3dc5ece2b2e16h"
  239.   "3h2e3g3efefecfc2d3c7eb3e16h"
  240.   "4h2e2g3ef2efacfcfdf9eb3e15h"
  241.   "4h4eg3efefeacfcfd2f7eb3e15h"
  242.   "5h7ef3eacfc2fd4f4ebe3f14h"
  243.   "5h4ef7ecfc2efce4f2ebefdf14h"
  244.   "6h4ef4efecfefefece4febefd2f13h"
  245.   "6h2ef2ef4efcef2efe2c3efebef2df13h"
  246.   "7h2efef6efefef5ec2ebefd3f12h"
  247.   "7h2ef2ef2e2cef2efef8ebe2f2e12h"
  248.   "8h2efef2e3c2ef2e2f5ecebe2f2eb11h"
  249.   "8h2ef4e3cecfce2f7ebe2f2eb11h"
  250.   "9h5ea6ece2f7ecbefe2be10h"
  251.   "9h3efea5efc3ef7eb3eb2e10h"
  252.   "10h2efea4ecfecfef8eb2eb3e9h"
  253.   "10hefef2ef5ec11eb2ebefe9h"
  254.   "11hefefef4e2f6ef5ebeb2efe8h"
  255.   "11hef2ef4ec2ef5e2f5e2b2efe8h"
  256.   "12hefe2f4ef2e2f4ef5eb6e7h"
  257.   "12h2e2f6efef2ef2e2f4eb6e7h"
  258.   "13h2f5ec2f5ef2ef3e2b3e2f2e6h"
  259.   "13h5ec2e2f5ef2ef2e2b4e3fe6h"
  260.   "14h6ec2f11eb6e2f2e5h"
  261.   "14h3ef3ef11e2b10e5h"
  262.   "15h2efe2cf11ebe5b6e4h"
  263.   "15h2efec11e3b6e6b4h"
  264.   "16h3ec11eb15e3h"
  265.   "16h10ec4eb2e2f11e3h"
  266.   "50h"
  267. ))
  268.  
  269. (side 1 (name "US") (emblem-name "flag-usa")
  270.   (class "us"))
  271.  
  272. (side 2 (noun "Mormon") (emblem-name "none")
  273.   (class "mormon"))
  274.  
  275. (side 3 (noun "Ute") (adjective "Ute") (emblem-name "none")
  276.   (class "indian"))
  277.  
  278. (fort 14 31 1 (n "Ft Douglas"))
  279. (army 14 31 1 (in "Ft Douglas"))
  280. (army 15 31 1)
  281. (army 16 31 1)
  282. (army 16 32 1)
  283. (army 17 32 1)
  284. (army 18 32 1)
  285.  
  286. (temple 14 30 2 (n "Salt Lake City"))
  287. (prophet 14 30 2 (n "Brigham Young") (in "Salt Lake City"))
  288. (avenging-angel 14 30 2 (in "Salt Lake City"))
  289. (mormon 14 30 2 (in "Salt Lake City"))
  290.  
  291. (settlement 15 27 2 (n "Orem"))
  292. (settlement 17 25 2 (n "Provo"))
  293. (settlement 14 29 2 (n "Sandy"))
  294. (settlement 12 32 2 (n "Ogden"))
  295.  
  296. (indian  9 39 3)
  297. (indian  9 37 3)
  298. (indian 14 37 3)
  299. (indian 14 34 3)
  300. (indian 22 28 3)
  301. (indian 18 26 3)
  302. (indian 17 23 3)
  303. (indian 16 18 3)
  304. (indian 21 16 3)
  305.  
  306. (game-module (instructions (
  307.   "The Mormons should try to reproduce themselves "
  308.   "and spread out as much as possible "
  309.   "before the cavalry catches up with them."
  310.   "Use the Avenging Angels to ambush the cavs."
  311.   ""
  312.   "The US cavalry just has to kill as many Mormons "
  313.   "as possible, as fast as possible."
  314.   ""
  315.   "The Indians want both other parties gone, the "
  316.   "sooner the better.  They should also work to "
  317.   "increase their numbers before tangling with the "
  318.   "other sides."
  319.   )))
  320.  
  321. (game-module (notes (
  322.   "Can the US army kill all the Mormons before they overpopulate Utah?"
  323.   ""
  324.   "(This is all a joke of course.)"
  325.   )))
  326.  
  327. (game-module (design-notes (
  328.   )))
  329.